crypto/tls.Conn.verifiedChains (field)
12 uses
crypto/tls (current package)
conn.go#L59: verifiedChains [][]*x509.Certificate
conn.go#L1612: state.VerifiedChains = c.verifiedChains
conn.go#L1651: if len(c.verifiedChains) == 0 {
handshake_client.go#L811: c.verifiedChains = hs.session.verifiedChains
handshake_client.go#L993: c.verifiedChains, err = certs[0].Verify(opts)
handshake_client.go#L1012: if err := c.config.VerifyPeerCertificate(certificates, c.verifiedChains); err != nil {
handshake_client_tls13.go#L366: c.verifiedChains = hs.session.verifiedChains
handshake_server.go#L495: c.verifiedChains = sessionState.verifiedChains
handshake_server.go#L910: c.verifiedChains = chains
handshake_server.go#L927: if err := c.config.VerifyPeerCertificate(certificates, c.verifiedChains); err != nil {
handshake_server_tls13.go#L383: c.verifiedChains = sessionState.verifiedChains
ticket.go#L304: verifiedChains: c.verifiedChains,
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |